from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

80906

userrating:

average rating: 1.2 (50 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-09-17
aspell-af - 0.50.0-r1
Ebuild name:

app-dicts/aspell-af-0.50.0-r1

Description

Aspell () language dictionary

Added to portage

2025-09-17

aspell-am - 0.03.1-r1
Ebuild name:

app-dicts/aspell-am-0.03.1-r1

Description

Aspell () language dictionary

Added to portage

2025-09-17

aspell-ar - 1.2.0-r1
Ebuild name:

app-dicts/aspell-ar-1.2.0-r1

Description

Aspell () language dictionary

Added to portage

2025-09-17

awscli - 1.42.32
Ebuild name:

app-admin/awscli-1.42.32

Description

Universal Command Line Environment for AWS

Added to portage

2025-09-17

boto3 - 1.40.32
Ebuild name:

dev-python/boto3-1.40.32

Description

The AWS SDK for Python

Added to portage

2025-09-17

botocore - 1.40.32
Ebuild name:

dev-python/botocore-1.40.32

Description

Low-level, data-driven core of boto 3

Added to portage

2025-09-17

ceph - 20.1.0-r2
Ebuild name:

sys-cluster/ceph-20.1.0-r2

Description

Ceph distributed filesystem

Added to portage

2025-09-17

cmd2 - 3.0.0_beta1
Ebuild name:

dev-python/cmd2-3.0.0_beta1

Description

Extra features for standard library's cmd module

Added to portage

2025-09-17

cryptography - 46.0.1
Ebuild name:

dev-python/cryptography-46.0.1

Description

Library providing cryptographic recipes and primitives

Added to portage

2025-09-17

cython - 3.1.4
Ebuild name:

dev-python/cython-3.1.4

Description

A Python to C compiler

Added to portage

2025-09-17

dkms - 3.2.2
Ebuild name:

sys-kernel/dkms-3.2.2

Description

Dynamic Kernel Module Support

Added to portage

2025-09-17

dust - 1.2.3
Ebuild name:

sys-block/dust-1.2.3

Description

A more intuitive version of du

Added to portage

2025-09-17

erlang - 26.2.5.15
Ebuild name:

dev-lang/erlang-26.2.5.15

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2025-09-17

erlang - 27.3.4.3
Ebuild name:

dev-lang/erlang-27.3.4.3

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2025-09-17

erlang - 28.0.4
Ebuild name:

dev-lang/erlang-28.0.4

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2025-09-17

erlang - 28.1
Ebuild name:

dev-lang/erlang-28.1

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2025-09-17

expat - 2.7.2
Ebuild name:

dev-libs/expat-2.7.2

Description

Stream-oriented XML parser library

Added to portage

2025-09-17

folly - 2025.04.14.00-r2
Ebuild name:

dev-cpp/folly-2025.04.14.00-r2

Description

An open-source C++ library developed and used at Facebook

Added to portage

2025-09-17

ghostty - 1.2.0
Ebuild name:

x11-terms/ghostty-1.2.0

Description

Fast, feature-rich, and cross-platform terminal emulator

Added to portage

2025-09-17

gmmlib - 22.8.2
Ebuild name:

media-libs/gmmlib-22.8.2

Description

Intel Graphics Memory Management Library

Added to portage

2025-09-17

google-api-python-client - 2.182.0
Ebuild name:

dev-python/google-api-python-client-2.182.0

Description

Google API Client for Python

Added to portage

2025-09-17

grpcio - 1.75.0
Ebuild name:

dev-python/grpcio-1.75.0

Description

HTTP/2-based RPC framework

Added to portage

2025-09-17

grpcio-status - 1.75.0
Ebuild name:

dev-python/grpcio-status-1.75.0

Description

Reference package for GRPC Python status proto mapping

Added to portage

2025-09-17

gtk4-layer-shell - 1.1.1-r1
Ebuild name:

gui-libs/gtk4-layer-shell-1.1.1-r1

Description

A library for using the Layer Shell Wayland protocol with GTK4.

Added to portage

2025-09-17

hypothesis - 6.139.1
Ebuild name:

dev-python/hypothesis-6.139.1

Description

A library for property based testing

Added to portage

2025-09-17

libva-intel-media-driver - 25.3.4
Ebuild name:

media-libs/libva-intel-media-driver-25.3.4

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2025-09-17

log4cplus - 2.1.2-r1
Ebuild name:

dev-libs/log4cplus-2.1.2-r1

Description

C++ port of the Log for Java (log4j) logging library

Added to portage

2025-09-17

mvfst - 2025.04.14.00-r1
Ebuild name:

dev-cpp/mvfst-2025.04.14.00-r1

Description

An implementation of the QUIC transport protocol

Added to portage

2025-09-17

nbclassic - 1.3.3
Ebuild name:

dev-python/nbclassic-1.3.3

Description

Jupyter Notebook as a Jupyter Server Extension

Added to portage

2025-09-17

notus-scanner - 22.7.2
Ebuild name:

net-analyzer/notus-scanner-22.7.2

Description

Notus is a vulnerability scanner for creating results from local

Added to portage

2025-09-17

openjdk - 25_p36
Ebuild name:

dev-java/openjdk-25_p36

Description

Open source implementation of the Java programming language

Added to portage

2025-09-17

openpgp-keys-gentoo-developers - 20250915
Ebuild name:

sec-keys/openpgp-keys-gentoo-developers-20250915

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2025-09-17

phonenumbers - 9.0.14
Ebuild name:

dev-python/phonenumbers-9.0.14

Description

Python port of Google's libphonenumber

Added to portage

2025-09-17

pymongo - 4.15.1
Ebuild name:

dev-python/pymongo-4.15.1

Description

Python driver for MongoDB

Added to portage

2025-09-17

pyopenssl - 25.3.0
Ebuild name:

dev-python/pyopenssl-25.3.0

Description

Python interface to the OpenSSL library

Added to portage

2025-09-17

pytest-lazy-fixtures - 1.4.0
Ebuild name:

dev-python/pytest-lazy-fixtures-1.4.0

Description

Allows you to use fixtures in @pytest.mark.parametrize

Added to portage

2025-09-17

pytest-mock - 3.15.1
Ebuild name:

dev-python/pytest-mock-3.15.1

Description

Thin-wrapper around the mock package for easier use with pytest

Added to portage

2025-09-17

qgpgme - 2.0.0-r2
Ebuild name:

dev-libs/qgpgme-2.0.0-r2

Description

GnuPG Made Easy is a library for making GnuPG easier to use (Qt bindings)

Added to portage

2025-09-17

rspamd - 3.13.0
Ebuild name:

mail-filter/rspamd-3.13.0

Description

Rapid spam filtering system

Added to portage

2025-09-17

subtitlecomposer - 0.8.2
Ebuild name:

media-video/subtitlecomposer-0.8.2

Description

Text-based subtitles editor

Added to portage

2025-09-17

thunderbird - 143.0
Ebuild name:

mail-client/thunderbird-143.0

Description

Thunderbird Mail Client

Added to portage

2025-09-17

thunderbird-bin - 143.0
Ebuild name:

mail-client/thunderbird-bin-143.0

Description

Thunderbird Mail Client

Added to portage

2025-09-17

tig - 2.6.0
Ebuild name:

dev-vcs/tig-2.6.0

Description

text mode interface for git

Added to portage

2025-09-17

wakeonlan - 0.42
Ebuild name:

net-misc/wakeonlan-0.42

Description

Client for Wake-On-LAN

Added to portage

2025-09-17

wiremix - 0.7.0
Ebuild name:

media-sound/wiremix-0.7.0

Description

A TUI mixer for PipeWire

Added to portage

2025-09-17

yubikey-manager - 5.8.0
Ebuild name:

app-crypt/yubikey-manager-5.8.0

Description

Python library and command line tool for configuring a YubiKey

Added to portage

2025-09-17

yubioath-flutter-bin - 7.1.1
Ebuild name:

app-crypt/yubioath-flutter-bin-7.1.1

Description

Yubico Authenticator for TOTP

Added to portage

2025-09-17

yubioath-flutter-bin - 7.2.3
Ebuild name:

app-crypt/yubioath-flutter-bin-7.2.3

Description

Yubico Authenticator for TOTP

Added to portage

2025-09-17

zoom - 6.6.0.4410
Ebuild name:

net-im/zoom-6.6.0.4410

Description

Video conferencing and web conferencing service

Added to portage

2025-09-17

zulucrypt - 7.0.0
Ebuild name:

app-crypt/zulucrypt-7.0.0

Description

Front end to cryptsetup

Added to portage

2025-09-17

2025-09-16
apparmor-profiles - 4.1.1
Ebuild name:

sec-policy/apparmor-profiles-4.1.1

Description

A collection of profiles for the AppArmor application security s

Added to portage

2025-09-16

asciinema - 3.0.0
Ebuild name:

app-misc/asciinema-3.0.0

Description

Terminal session recorder, streamer, and player

Added to portage

2025-09-16

awscli - 1.42.31
Ebuild name:

app-admin/awscli-1.42.31

Description

Universal Command Line Environment for AWS

Added to portage

2025-09-16

blas - 3.8-r1
Ebuild name:

virtual/blas-3.8-r1

Description

Virtual for FORTRAN 77 BLAS implementation

Added to portage

2025-09-16

blessed - 1.22.0
Ebuild name:

dev-python/blessed-1.22.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2025-09-16

blis - 1.0-r1
Ebuild name:

sci-libs/blis-1.0-r1

Description

BLAS-like Library Instantiation Software Framework

Added to portage

2025-09-16

boost - 1.89.0
Ebuild name:

dev-libs/boost-1.89.0

Description

Boost Libraries for C++

Added to portage

2025-09-16

boto3 - 1.40.31
Ebuild name:

dev-python/boto3-1.40.31

Description

The AWS SDK for Python

Added to portage

2025-09-16

botocore - 1.40.31
Ebuild name:

dev-python/botocore-1.40.31

Description

Low-level, data-driven core of boto 3

Added to portage

2025-09-16

calamares - 3.3.14-r3
Ebuild name:

app-admin/calamares-3.3.14-r3

Description

Distribution-independent installer framework

Added to portage

2025-09-16

calamares-gentoo-livecd - 3.3.14_p20250915
Ebuild name:

app-misc/calamares-gentoo-livecd-3.3.14_p20250915

Description

Gentoo Linux Calamares installer configuration fo

Added to portage

2025-09-16

cblas - 3.8-r1
Ebuild name:

virtual/cblas-3.8-r1

Description

Virtual for BLAS C implementation

Added to portage

2025-09-16

discord - 0.0.110
Ebuild name:

net-im/discord-0.0.110

Description

All-in-one voice and text chat for gamers

Added to portage

2025-09-16

duckdb - 1.4.0
Ebuild name:

dev-db/duckdb-1.4.0

Description

high-performance analytical database system

Added to portage

2025-09-16

dulwich - 0.24.1
Ebuild name:

dev-python/dulwich-0.24.1

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2025-09-16

faker - 37.8.0
Ebuild name:

dev-python/faker-37.8.0

Description

A Python package that generates fake data for you

Added to portage

2025-09-16

fastbencode - 0.3.6
Ebuild name:

dev-python/fastbencode-0.3.6

Description

Implementation of bencode with Rust implementation

Added to portage

2025-09-16

firefox - 140.3.0
Ebuild name:

www-client/firefox-140.3.0

Description

Firefox Web Browser

Added to portage

2025-09-16

firefox - 143.0
Ebuild name:

www-client/firefox-143.0

Description

Firefox Web Browser

Added to portage

2025-09-16

firefox-bin - 140.3.0
Ebuild name:

www-client/firefox-bin-140.3.0

Description

Firefox Web Browser

Added to portage

2025-09-16

fitsio - 1.2.8
Ebuild name:

dev-python/fitsio-1.2.8

Description

Python library to read from and write to FITS files

Added to portage

2025-09-16

freeipmi - 1.6.16
Ebuild name:

sys-libs/freeipmi-1.6.16

Description

Provides Remote-Console and System Management Software as per IPMI v1.5/2.

Added to portage

2025-09-16

gocryptfs - 2.6.1-r1
Ebuild name:

app-crypt/gocryptfs-2.6.1-r1

Description

Encrypted overlay filesystem written in Go

Added to portage

2025-09-16

godot - 4.5
Ebuild name:

dev-games/godot-4.5

Description

Multi-platform 2D and 3D game engine with a feature-rich editor

Added to portage

2025-09-16

httplib2 - 0.31.0
Ebuild name:

dev-python/httplib2-0.31.0

Description

A comprehensive HTTP client library

Added to portage

2025-09-16

hypothesis - 6.138.17
Ebuild name:

dev-python/hypothesis-6.138.17

Description

A library for property based testing

Added to portage

2025-09-16

inline-snapshot - 0.29.0
Ebuild name:

dev-python/inline-snapshot-0.29.0

Description

Create and update inline snapshots in your Python tests

Added to portage

2025-09-16

innoextract - 1.10_pre20250206-r1
Ebuild name:

app-arch/innoextract-1.10_pre20250206-r1

Description

A tool to unpack installers created by Inno Setup

Added to portage

2025-09-16

iozone - 3.507
Ebuild name:

app-benchmarks/iozone-3.507

Description

Filesystem benchmarking program

Added to portage

2025-09-16

iozone - 3.508
Ebuild name:

app-benchmarks/iozone-3.508

Description

Filesystem benchmarking program

Added to portage

2025-09-16

kombu - 5.6.0_beta3
Ebuild name:

dev-python/kombu-5.6.0_beta3

Description

AMQP Messaging Framework for Python

Added to portage

2025-09-16

lapack - 3.10-r1
Ebuild name:

virtual/lapack-3.10-r1

Description

Virtual for Linear Algebra Package FORTRAN 77 (LAPACK) implementation

Added to portage

2025-09-16

lapacke - 3.8-r2
Ebuild name:

virtual/lapacke-3.8-r2

Description

Virtual for LAPACK C implementation

Added to portage

2025-09-16

lldpd - 1.0.20
Ebuild name:

net-misc/lldpd-1.0.20

Description

Implementation of IEEE 802.1ab (LLDP)

Added to portage

2025-09-16

mkdocs-material - 9.6.20
Ebuild name:

dev-python/mkdocs-material-9.6.20

Description

A Material Design theme for MkDocs

Added to portage

2025-09-16

nokogiri - 1.18.10
Ebuild name:

dev-ruby/nokogiri-1.18.10

Description

Nokogiri is an HTML, XML, SAX, and Reader parser

Added to portage

2025-09-16

openipmi - 2.0.37
Ebuild name:

sys-libs/openipmi-2.0.37

Description

Library interface to IPMI

Added to portage

2025-09-16

openpgp-keys-gocryptfs - 20250916
Ebuild name:

sec-keys/openpgp-keys-gocryptfs-20250916

Description

OpenPGP keys used to sign gocryptfs

Added to portage

2025-09-16

paramiko - 4.0.0-r1
Ebuild name:

dev-python/paramiko-4.0.0-r1

Description

SSH2 protocol library

Added to portage

2025-09-16

pixi - 0.55.0
Ebuild name:

dev-util/pixi-0.55.0

Description

A package management and workflow tool

Added to portage

2025-09-16

poetry - 2.2.0
Ebuild name:

dev-python/poetry-2.2.0

Description

A frontend for poetry - a python dependency management and packaging tool

Added to portage

2025-09-16

poetry-core - 2.2.0
Ebuild name:

dev-python/poetry-core-2.2.0

Description

Poetry PEP 517 Build Backend

Added to portage

2025-09-16

protobuf - 6.32.1-r1
Ebuild name:

dev-python/protobuf-6.32.1-r1

Description

Google's Protocol Buffers - Python bindings

Added to portage

2025-09-16

pyicu - 2.15.3
Ebuild name:

dev-python/pyicu-2.15.3

Description

Python bindings for dev-libs/icu

Added to portage

2025-09-16

pytest-check - 2.5.4
Ebuild name:

dev-python/pytest-check-2.5.4

Description

pytest plugin that allows multiple failures per test

Added to portage

2025-09-16

qtconsole - 5.7.0
Ebuild name:

dev-python/qtconsole-5.7.0

Description

Qt-based console for Jupyter with support for rich media output

Added to portage

2025-09-16

radicale - 3.5.6
Ebuild name:

www-apps/radicale-3.5.6

Description

A simple CalDAV calendar server

Added to portage

2025-09-16

regexp_parser - 2.11.3
Ebuild name:

dev-ruby/regexp_parser-2.11.3

Description

A library for tokenizing, lexing, and parsing Ruby regular expression

Added to portage

2025-09-16

ruby - 3.4.6
Ebuild name:

dev-lang/ruby-3.4.6

Description

An object-oriented scripting language

Added to portage

2025-09-16

schroot - 1.6.13_p7-r2
Ebuild name:

dev-util/schroot-1.6.13_p7-r2

Description

Utility to execute commands in a chroot environment

Added to portage

2025-09-16

sequel - 5.96.0
Ebuild name:

dev-ruby/sequel-5.96.0

Description

A lightweight database toolkit for Ruby

Added to portage

2025-09-16

simdjson - 4.0.3
Ebuild name:

dev-libs/simdjson-4.0.3

Description

SIMD accelerated C++ JSON library

Added to portage

2025-09-16

tuxedo-drivers - 4.15.4
Ebuild name:

app-laptop/tuxedo-drivers-4.15.4

Description

Kernel modules for TUXEDO laptops

Added to portage

2025-09-16

types-gdb - 16.3.0.20250915
Ebuild name:

dev-python/types-gdb-16.3.0.20250915

Description

Typing stubs for gdb

Added to portage

2025-09-16

urwid - 3.0.3
Ebuild name:

dev-python/urwid-3.0.3

Description

Curses-based user interface library for Python

Added to portage

2025-09-16

xlsxwriter - 3.2.9
Ebuild name:

dev-python/xlsxwriter-3.2.9

Description

Python module for creating Excel XLSX files

Added to portage

2025-09-16

xvfbwrapper - 0.2.14
Ebuild name:

dev-python/xvfbwrapper-0.2.14

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2025-09-16

yubikey-manager - 5.8.0
Ebuild name:

app-crypt/yubikey-manager-5.8.0

Description

Python library and command line tool for configuring a YubiKey

Added to portage

2025-09-16

zeep - 4.3.2
Ebuild name:

dev-python/zeep-4.3.2

Description

A modern/fast Python SOAP client based on lxml / requests

Added to portage

2025-09-16

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 47.6 ms